Set of combinable options controlling the behaviour of print functions.
| Enumerator |
|---|
| GM_PRINT_UNITS | Should we print units in column title? Default = true.
|
| GM_PRINT_UNITS_ON_SECOND_LINE | Should we print units in the header in a separate line? Default = false.
|
| GM_PRINT_EVAL_FUNCTIONS | Should we evaluate functions or do we print its name? Default = false.
|
| GM_PRINT_DEF_AS_NIL | Should we print default values as 'nil'? Default = false.
|
| GM_PRINT_LINE_NUMBERS | Should we print line numbers on the left margin? Default = true.
|
| GM_PRINT_CLIP_TITLES | Should we clip column titles when the user gave us a width and the title is bigger than that? Default = true.
|
| GM_PRINT_CELL_TYPE | Should we add a type column for cell meshes / Gauss attributes? Default = true.
|
| GM_PRINT_CELL_NODES | Should we add a node column for cell meshes? Default = true.
|
| GM_PRINT_CELL_PROPERTY_NAMES | Should we add a columns with property names for cell meshes? Default = true.
|
| GM_PRINT_CELL_EVAL_POINT | Should we add a evaluation point column when EVAL_FUNCTIONS = true for cell meshes or for Gauss Attributes? Default = false.
|
| GM_PRINT_CELL_ACTIVE | Should we add a column telling if the cell is active or not for cell meshes? Default = false.
|
| GM_PRINT_NODE_GEOMETRY | Should we print common geometry nodes? When false, filters rows in printValueTable() or cell nodes in printCellTable(). Default = true.
|
| GM_PRINT_NODE_GHOST | Should we print ghost nodes? When false, filters rows in printValueTable() or cell nodes in printCellTable(). Default = true.
|
| GM_PRINT_MARK_GHOST_NODES | Should we mark line numbers (with a '|' prefix) in printValueTable() or cell node numbers in printCellTable()? Default = false.
|
| GM_PRINT_HEADER_TITLE | Should we print a title in the header, for the entire table? Default = false.
|
| GM_PRINT_TRAILLER | Should we add a closing trailler line to the table? Default = false.
|
| GM_PRINT_ACTIVEONLY | Should we print only active cells? Default = true.
|
| GM_PRINT_CONSTMAP | Should we try to translate values back to strings when a scalar data column has an associated const map? Default = false.
|
| GM_PRINT_ID | Should we add a node or cell Ids column? For node ids, ghost nodes are represented as negative numbers. For compatibility, it is used only if the mesh was partitioned or if INTERNAL_ORDER is true. Default = true.
|
| GM_PRINT_INTERNAL_ID | Should we add an internal (renumbered but 1-based) node/cell id column? For node ids, ghost nodes are represented as negative numbers. Default = false.
|
| GM_PRINT_INTERNAL_ORDER | Should we order the rows in the table according to the internal id (instead of the model id)? Default = false.
|
| GM_PRINT_USER | A mark to set the first 'user' option available. This value should be updated whenever adding options to GmPrintUtilsFlags.
|
| GM_PRINT_DEFAULT | A tag to request that the options should be filled with the default.
|